563b8bda005e4b03277d1e76d9a5ed9a9890d3d5,javasrc/src/org/ccnx/ccn/profiles/versioning/VersioningInterestManager.java,VersioningInterestManager,sendInterest,#InterestData#,704
Before Change
// Remove the old interest so we never match more than one
// thing to an INterestData
if( null != old ) {
_handle.cancelInterest(old, this);
_interestMap.remove(old);
}
After Change
// Remove the old interest so we never match more than one
// thing to an INterestData
if( null != old ) {
_handle.cancelInterest(old, this);
InterestMapData imd = _interestMap.get(old);
if( null != imd )
imd.setReexpress(false);